home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 14553 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.0 KB

  1. Path: ss2.cs.mci.com!usenet
  2. From: Damon Curnell <DCurnell@mcimail.com>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: HELP!! with Borland 4.5 for windows
  5. Date: Sun, 31 Mar 1996 04:52:26 -0700
  6. Organization: MCI Telecommunications, Colorado Springs, CO
  7. Message-ID: <315E71FA.269A@mcimail.com>
  8. References: <4jk6ae$ioj@sphinx.Gsu.EDU>
  9. NNTP-Posting-Host: damon.cs.mci.com
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0 (WinNT; I)
  14.  
  15. Louis Miller Hall wrote:
  16. > I am having a problem linking basic EasyWin programs that I used to be
  17. > able to link easily.  I create a project by choosing "New Project" then
  18. > choose EasyWin in the Advanced Box I uncheck .def and .rc and go from
  19. > there.  I write my EasyWin .cpp program which compiles, but when I click
  20. > the lightning bolt I get the following error:
  21. > Linker Fatal:  Unable to open file 'cOwl.obj'
  22. > even though my project looks like this:
  23. > date[.exe]
  24. >   date[.cpp]  code size = 106  lines = 13 data = 11
  25. > these are the only files I have yet the compiler is still trying to link
  26. > the Owl file!!
  27. > Any ideas out there, I would truly appreciate any help and give my thanks
  28. > in advance.
  29.  
  30. The c0wl.obj file is a Borland startup file that is the result of c0w.asm 
  31. in the <bordir>\lib\startup directory.  The 'w' stands for Windows,  the 'l' 
  32. is appended for large memory module and 'c0' probably is a cutesy way of
  33. saying 'c' startup.
  34.  
  35. Normally the c0wl.obj file is located in the <bordir>\lib if it is not 
  36. you will have to tell the IDE where it is.  
  37.  
  38. You can tell the ide where the file is by simply adding the file path using 
  39. Options/Project and clicking on directories then modifying the Library editline. 
  40.  
  41. Normally the path is defaulted to <drive>:\<bordir>\bin.  This edit line is 
  42. similar to a path statement so you may add additional directories as long as they
  43. are separated by a semicolon.
  44.  
  45. If the file is not in this directory or anywhere on your disk you will have to 
  46. reload it by re-installing the large memory module.
  47.